:root {
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.video-container {
  max-width: 1080px;
  padding: 40px 20px;
  position: relative;
}

.heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: eurostile-extended, sans-serif;
}

.paragraph {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.search-box {
  background-color: #323334;
  border-radius: 6px;
  max-width: 400px;
  min-height: 42px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  position: relative;
}

.heading-2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: eurostile-extended, sans-serif;
  font-size: 22px;
  line-height: 22px;
}

.paragraph-2 {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.images {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  line-height: 14px;
  display: flex;
}

.image-box {
  border-radius: 6px;
  justify-content: center;
  width: 300px;
  height: 169px;
  margin: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lightbox-link {
  width: 100%;
  height: 100%;
}

.image {
  display: inline-block;
}

.text-overlay {
  color: #fff !important;
  text-align: center;
  object-fit: fill;
  object-position: 50% 50%;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: 0;
}

.overlay-text {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 16px;
color: #fff !important;
}

@media screen and (max-width: 991px) {
  .text-overlay {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .image-box {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .image-box {
    width: 100%;
    height: auto;
  }

  .image {
    object-fit: cover;
  }
}


